home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / nethack.lha / nethack-3.1 / include / spell.h < prev    next >
C/C++ Source or Header  |  1993-01-17  |  326b  |  15 lines

  1. /*    SCCS Id: @(#)spell.h    3.1    90/22/02    */
  2. /* Copyright 1986, M. Stephenson                  */
  3. /* NetHack may be freely redistributed.  See license for details. */
  4.  
  5. #ifndef SPELL_H
  6. #define SPELL_H
  7.  
  8. struct spell {
  9.     int    sp_id;            /* spell id */
  10.     int    sp_lev;            /* power level */
  11.     int    sp_uses;        /* uses left to spell */
  12. };
  13.  
  14. #endif /* SPELL_H */
  15.